home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
make
/
icmake-6.000
/
icmake-6
/
icmake
/
comp
/
breakstm.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-02-08
|
414 b
|
24 lines
/*
B R E A K S T M . C
*/
#include "iccomp.h"
static ESTRUC_
e;
ESTRUC_ *break_stmnt()
{
e = stackframe(0);
if (!break_ok)
semantic("'break' only in 'while' or 'for' statements");
else
{
gencode(&e, op_jmp, j_truelist);
e.type = e_bool | e_code;
++dead[dead_sp]; /* next code is dead */
}
return (&e);
}